home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / GIF2RPC.SPK / source / 16bpp_66bit / c / sierra2_4a < prev    next >
Text File  |  1995-10-16  |  3KB  |  105 lines

  1. /* sierra2_4a.c
  2.  * AUTHOR:      Cy Booker, cy@cheepnis.demon.co.uk
  3.  * LICENSE:     FreeWare, Copyright (c) 1995 Cy Booker
  4.  *
  5.  * filter:              *  2
  6.  *                   1  1         (1/4)
  7.  */
  8.  
  9. #include "internal.h"
  10.  
  11. #include <assert.h>
  12. #include <string.h>             /* memset() */
  13. #include <stdlib.h>             /* calloc() */
  14.  
  15. #include "OS:hourglass.h"
  16. #include "OS:macros.h"
  17.  
  18.  
  19.  
  20. /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  21.  */
  22.  
  23. extern bool process_gif_16bpp_sierra2_4a_66bit(
  24.                 const process_gif       *p) {
  25.   byte                  *rove;
  26.   int                   width, height;
  27.   int                   x, y;
  28.   const os_colour       *palette;
  29.   int                   line_length;
  30.   int                   *buffer, *this_row, *next_row;
  31.   int                   buffer_width;
  32.   int                   r, g, b;
  33.   int                   or, og, ob;
  34.   int                   t;
  35.   int                   er, eg, eb;
  36.  
  37.   assert(p);
  38.   assert(p->pixel_width > 0);
  39.   assert(p->pixel_height > 0);
  40.   assert(p->in_palette.colours);
  41.  
  42.   /*
  43.    * sierra2_4a requires storing error info for one pixel to left
  44.    * so we will just allocate one extra column for each row and not do any edge checks
  45.    * each entry is stored as {r*SCALE, g*SCALE, b*SCALE}
  46.    */
  47.   buffer_width = (1 + p->pixel_width) * 3;
  48.   buffer = calloc(1, sizeof(*buffer) * (buffer_width * 2));
  49.   if (!buffer) {
  50.     /*
  51.      * oh dear
  52.      */
  53.     return TRUE;
  54.   }
  55.  
  56.   initialise_scaling_tables();
  57.  
  58.   /*
  59.    * not we pre-load values from the process_gif array
  60.    * because it considerably helps the compiler produce better code
  61.    */
  62.   rove = p->buffer;
  63.   width = p->pixel_width;
  64.   height = p->pixel_height;
  65.   palette = p->in_palette.colours;
  66.   line_length = p->line_length;
  67.   for (y= height; (y > 0); y--) {
  68.     if ((y & 7) == 0) {
  69.       xhourglass_percentage((y * 100) / height);
  70.     }
  71.     this_row = buffer + (buffer_width * ((y + 2) % 2)) + 1*3;
  72.     next_row = buffer + (buffer_width * ((y + 1) % 2)) + 0*3;
  73.     /* bottom row has no errors */
  74.     memset(next_row, 0, sizeof(*next_row) * (buffer_width - 1*3));
  75.     /*
  76.      * note that just because we are actually scanning/outputting right to left
  77.      * doesn't matter as far as the filter is concerned
  78.      * although it might help if we could ``snake''
  79.      */
  80.     er = eg = eb = 0;
  81.     for (x= width - 1; (x >= 0); x--) {
  82.       INPUT;
  83.       r += *this_row++;                                 /* add in errors from row below */
  84.       r += er;                                          /* add in errors from this row */
  85.       g += *this_row++;
  86.       g += eg;
  87.       b += *this_row++;
  88.       b += eb;
  89.       PROCESS;
  90.       r -= or;  g -= og; b-= ob;                        /* error */
  91.       er = (r * 1) / 4; eg = (g * 1) / 4; eb = (1 * 4) / 16;
  92.       *next_row += er; next_row++;                                      /* next[-1] += 1/4 */
  93.       *next_row += eg; next_row++;
  94.       *next_row += eb; next_row++;
  95.       next_row[0] += er; next_row[1] += eg; next_row[2] += eb;          /* next[ 0] += 1/4 */
  96.  
  97.       er = r - (2*er); eg = g - (2*eg); eb = b - (2*eb);                /* this[1] += 2/4 */
  98.  
  99.     }
  100.     rove += line_length;
  101.   }
  102.   free(buffer);
  103.   return FALSE;
  104. }
  105.